home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / envman.lha / EnvManager / rcs / stringreq.h < prev   
Encoding:
C/C++ Source or Header  |  1996-08-23  |  689 b   |  50 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dlorre:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    96.08.23.16.57.35;    author dlorre;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @EnvManager : Gestionnaire d'Environnement
  17. Auteur : Dominique Lorre
  18. @
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @// stringreq.h
  27. // 01.02.95
  28.  
  29.  
  30. #include <libraries/gadtools.h>
  31. #include <string.h>
  32.  
  33. #include "screen.h"
  34. #include "window.h"
  35. #include "gadgets/string.h"
  36.  
  37. class rstring : public window
  38. {
  39. public:
  40.     STRPTR def ;
  41.     STRPTR titre ;
  42.     rstring(short l, short t, short w, short h) : window(l, t, w, h) {}
  43.     void        open(screen *) ;
  44.     void fstring(gadget *g, unsigned long classe, unsigned short code) ;
  45. };
  46.  
  47.  
  48. IMPORT screen   *ns ;
  49. @
  50.